home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
docs
/
misc
/
MSHTut30.lha
/
MSH
/
msh-156.lha
/
syslog
/
log.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-10-25
|
325 b
|
21 lines
/*-
* $Id: log.c,v 1.1 1994/10/24 20:36:30 Rhialto Exp $
*
* $Log: log.c,v $
* Revision 1.1 1994/10/24 20:36:30 Rhialto
* Initial revision
*
* LOG A MESSAGE
-*/
#include "syslog.h"
main(argc, argv)
int argc;
char **argv;
{
initsyslog();
syslog0("%s: %s\n", argv[0], argv[1]);
uninitsyslog();
}